Tables [dbo].[RecurringDonationExpectedPaymentStatusRef]
Properties
PropertyValue
Created2:10:00 PM Thursday, March 18, 2010
Last Modified11:40:07 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_RecurringDonationExpectedPaymentStatusRef: RecurringDonationExpectedPaymentStatusCodeRecurringDonationExpectedPaymentStatusCodesmallint2
No
RecurringDonationExpectedPaymentStatusNamenvarchar(40)80
No
RecurringDonationExpectedPaymentStatusDescnvarchar(50)100
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_RecurringDonationExpectedPaymentStatusRef: RecurringDonationExpectedPaymentStatusCodePK_RecurringDonationExpectedPaymentStatusRefRecurringDonationExpectedPaymentStatusCode
Yes
Permissions
TypeActionOwning Principal
GrantDeleteIMIS
GrantInsertIMIS
GrantReferencesIMIS
GrantSelectIMIS
GrantUpdateIMIS
SQL Script
CREATE TABLE [dbo].[RecurringDonationExpectedPaymentStatusRef]
(
[RecurringDonationExpectedPaymentStatusCode] [smallint] NOT NULL,
[RecurringDonationExpectedPaymentStatusName] [nvarchar] (40) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[RecurringDonationExpectedPaymentStatusDesc] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[RecurringDonationExpectedPaymentStatusRef] ADD CONSTRAINT [PK_RecurringDonationExpectedPaymentStatusRef] PRIMARY KEY CLUSTERED ([RecurringDonationExpectedPaymentStatusCode]) ON [PRIMARY]
GO
GRANT REFERENCES ON  [dbo].[RecurringDonationExpectedPaymentStatusRef] TO [IMIS]
GRANT SELECT ON  [dbo].[RecurringDonationExpectedPaymentStatusRef] TO [IMIS]
GRANT INSERT ON  [dbo].[RecurringDonationExpectedPaymentStatusRef] TO [IMIS]
GRANT DELETE ON  [dbo].[RecurringDonationExpectedPaymentStatusRef] TO [IMIS]
GRANT UPDATE ON  [dbo].[RecurringDonationExpectedPaymentStatusRef] TO [IMIS]
GO
Uses
Used By